home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / kernel / mach / sun3.md / machEeprom.c < prev    next >
C/C++ Source or Header  |  1992-12-18  |  6KB  |  226 lines

  1. /* 
  2.  * machEeprom.c --
  3.  *
  4.  *    Interface to the EEPROM o the Sun 3.
  5.  *
  6.  * Copyright 1990 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: /cdrom/src/kernel/Cvsroot/kernel/mach/sun3.md/machEeprom.c,v 1.3 91/09/10 18:17:22 rab Exp $ SPRITE (Berkeley)";
  18. #endif /* not lint */
  19.  
  20. #include "sprite.h"
  21. #include "stdio.h"
  22. #include "machConst.h"
  23. #include "machMon.h"
  24. #include "machEeprom.h"
  25. #include "machInt.h"
  26. #include "mach.h"
  27. #include "sys.h"
  28.  
  29.  
  30. /*
  31.  *----------------------------------------------------------------------
  32.  *
  33.  * Mach_EepromPrintConfig --
  34.  *
  35.  *    Print system configuration information from the EEPROM.    
  36.  *
  37.  * Results:
  38.  *    None.
  39.  *
  40.  * Side effects:
  41.  *    None.
  42.  *
  43.  *----------------------------------------------------------------------
  44.  */
  45.  
  46. void
  47. Mach_EepromPrintConfig()
  48. {
  49.     struct eed_conf *confPtr;
  50.     int slot;
  51.  
  52.     confPtr = &machEepromPtr->ee_diag.eed_conf[0];
  53.     for (slot=0 ; slot<MACH_MAX_SLOTS ; slot++, confPtr++) {
  54.     if (confPtr->eec_un.eec_gen.eec_type == MACH_SLOT_TYPE_NONE) {
  55.         continue;
  56.     }
  57.     printf ("Slot %d (%x): ", slot, confPtr->eec_un.eec_gen.eec_type);
  58.     switch (confPtr->eec_un.eec_gen.eec_type) {
  59.         case MACH_SLOT_TYPE_CPU:
  60.         printf(" CPU with %d Meg %s %s cache %d Kbytes\n",
  61.             confPtr->eec_un.eec_cpu.eec_cpu_memsize,
  62.             confPtr->eec_un.eec_cpu.eec_cpu_dcp ? "DCP" : "",
  63.             confPtr->eec_un.eec_cpu.eec_cpu_68881 ? "68881" : "",
  64.             confPtr->eec_un.eec_cpu.eec_cpu_cachesize);
  65.         break;
  66.         case MACH_SLOT_TYPE_MEM:
  67.         printf(" Memory %8d bytes",
  68.             confPtr->eec_un.eec_mem.eec_mem_size);
  69.         break;
  70.         case MACH_SLOT_TYPE_COLOR:
  71.         printf(" Color type %d",
  72.             confPtr->eec_un.eec_color.eec_color_type);
  73.         break;
  74.         case MACH_SLOT_TYPE_BW:
  75.         printf(" Black & White");
  76.         break;
  77.         case MACH_SLOT_TYPE_FPA:
  78.         printf(" Floating Point Accelerator");
  79.         break;
  80.         case MACH_SLOT_TYPE_DISK:
  81.         printf(" %s #%d disks %d",
  82.             (confPtr->eec_un.eec_disk.eec_disk_type ==
  83.             MACH_SLOT_DISK_TYPE_X450) ? "Xylogics 450"
  84.                           : "Xylogics 451",
  85.             confPtr->eec_un.eec_disk.eec_disk_ctlr,
  86.             confPtr->eec_un.eec_disk.eec_disk_disks);
  87.         break;
  88.         case MACH_SLOT_TYPE_TAPE:
  89.         printf(" 1/2\" Tape #%d tapes %d",
  90.             (confPtr->eec_un.eec_tape.eec_tape_type ==
  91.             MACH_SLOT_TAPE_TYPE_XT) ? "Xylogics 472"
  92.                           : "TapeMaster",
  93.             confPtr->eec_un.eec_tape.eec_tape_ctlr,
  94.             confPtr->eec_un.eec_tape.eec_tape_drives);
  95.         break;
  96.         case MACH_SLOT_TYPE_TTY:
  97.         printf(" TTY");
  98.         break;
  99.         case MACH_SLOT_TYPE_GP:
  100.         printf(" GP");
  101.         break;
  102.         case MACH_SLOT_TYPE_DCP:
  103.         printf(" DCP");
  104.         break;
  105.         case MACH_SLOT_TYPE_SCSI:
  106.         printf(" SCSI-%d, %d tapes type #%d,  %d disks type #%d",
  107.             confPtr->eec_un.eec_scsi.eec_scsi_type,
  108.             confPtr->eec_un.eec_scsi.eec_scsi_tapes,
  109.             confPtr->eec_un.eec_scsi.eec_scsi_tape_type,
  110.             confPtr->eec_un.eec_scsi.eec_scsi_disks,
  111.             confPtr->eec_un.eec_scsi.eec_scsi_disk_type);
  112.         break;
  113.         case MACH_SLOT_TYPE_IPC:
  114.         printf(" IPC");
  115.         break;
  116.         case MACH_SLOT_TYPE_GB:
  117.         printf(" GB");
  118.         break;
  119.         case MACH_SLOT_TYPE_SCSI375:
  120.         printf(" SCSI 3/75");
  121.         break;
  122.         case MACH_SLOT_TYPE_MAPKIT:
  123.         printf(" MapKit");
  124.         break;
  125.         case MACH_SLOT_TYPE_CHANNEL:
  126.         printf(" Channel");
  127.         break;
  128.         case MACH_SLOT_TYPE_END:
  129.         printf(" End of Card Cage");
  130.         break;
  131.     }
  132.     printf("\n");
  133.     }
  134. }
  135.  
  136. /*
  137.  *----------------------------------------------------------------------
  138.  *
  139.  * Mach_EepromGetConfig --
  140.  *
  141.  *    Return system configuration information from the EEPROM.    
  142.  *
  143.  * Results:
  144.  *    None.
  145.  *
  146.  * Side effects:
  147.  *    None.
  148.  *
  149.  *----------------------------------------------------------------------
  150.  */
  151. /*ARGSUSED*/
  152. void
  153. Mach_EepromGetConfig(cpuPtr, memSizePtr, colorPtr, fpuPtr)
  154.     Mach_CpuConfig *cpuPtr;        /* Not implemented */
  155.     unsigned int *memSizePtr;        /* Number of bytes */
  156.     Mach_ColorConfig *colorPtr;        /* Color frame buffer info */
  157.     Mach_FpuConfig *fpuPtr;        /* FPU info */
  158. {
  159.     struct eed_conf *confPtr;
  160.     int slot;
  161.     unsigned int memSize = 0;
  162.  
  163.     fpuPtr->valid = 0;
  164.     colorPtr->valid = 0;
  165.  
  166.     confPtr = &machEepromPtr->ee_diag.eed_conf[0];
  167.     for (slot=0 ; slot<MACH_MAX_SLOTS ; slot++, confPtr++) {
  168.     if (confPtr->eec_un.eec_gen.eec_type == MACH_SLOT_TYPE_NONE) {
  169.         continue;
  170.     }
  171.     switch (confPtr->eec_un.eec_gen.eec_type) {
  172.         case MACH_SLOT_TYPE_CPU:
  173.         break;
  174.         case MACH_SLOT_TYPE_COLOR:
  175.         colorPtr->valid = 1;
  176.         colorPtr->type = confPtr->eec_un.eec_color.eec_color_type;
  177.         break;
  178.         case MACH_SLOT_TYPE_MEM:
  179.         memSize += confPtr->eec_un.eec_mem.eec_mem_size * 1024 * 1024;
  180.         break;
  181.         case MACH_SLOT_TYPE_FPA:
  182.         fpuPtr->valid = 1;
  183.         break;
  184.     }
  185.     }
  186.     *memSizePtr = memSize;
  187. }
  188.  
  189. /*
  190.  *----------------------------------------------------------------------
  191.  *
  192.  * Mach_ColorBoardInfo --
  193.  *
  194.  *    Return configuration information about the color board, if any.    
  195.  *
  196.  * Results:
  197.  *    None.
  198.  *
  199.  * Side effects:
  200.  *    None.
  201.  *
  202.  *----------------------------------------------------------------------
  203.  */
  204.  
  205. Boolean
  206. Mach_ColorBoardInfo(colorPtr)
  207.     Mach_ColorConfig *colorPtr;        /* Color frame buffer info */
  208. {
  209.     unsigned int memSize;
  210.     Mach_CpuConfig cpu;
  211.     Mach_FpuConfig fpu;
  212.  
  213.     Mach_EepromGetConfig(&cpu, &memSize, colorPtr, &fpu);
  214.     switch (Mach_GetMachineType()) {
  215.     case SYS_SUN_3_60:
  216.         /*
  217.          * These are the hardware page fram numbers suitable for
  218.          * putting into a PTE.
  219.          */
  220.         colorPtr->firstPage = 0xfc00;
  221.         colorPtr->lastPage =  0xfc7f;
  222.         break;
  223.     }
  224.     return(colorPtr->valid);
  225. }
  226.